home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue51 / SafeCall / ComServer.dpr < prev    next >
Encoding:
Text File  |  1999-08-19  |  338 b   |  18 lines

  1. program ComServer;
  2.  
  3. uses
  4.   Forms,
  5.   ComServerMainForm in 'ComServerMainForm.pas' {Form1},
  6.   ComServer_TLB in 'ComServer_TLB.pas',
  7.   ComServerImpl in 'ComServerImpl.pas' {ErrorTrappingTest: CoClass};
  8.  
  9. {$R *.TLB}
  10.  
  11. {$R *.RES}
  12.  
  13. begin
  14.   Application.Initialize;
  15.   Application.CreateForm(TForm1, Form1);
  16.   Application.Run;
  17. end.
  18.